home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / 5 / UNZIP_MA / SOURCE / UNZIP_MA.AZT < prev    next >
Text File  |  1992-03-03  |  1KB  |  48 lines

  1. #   This MPW makefile is designed to be used to compile an MPW version
  2. #   of unzip using the Aztec C compiler, version 5.2a. Simply rename
  3. #   this file as unzip.make and do an MPW build.
  4.  
  5.  
  6. #   File:       unzip.make
  7. #   Target:     unzip
  8. #   Sources:    unzip.c
  9. #               extract.c
  10. #               file_io.c
  11. #               macfile.c
  12. #               macstat.c
  13. #               mapname.c
  14. #               match.c
  15. #               misc.c
  16. #               unimplod.c
  17. #               unreduce.c
  18. #               unshrink.c
  19. #   Created:    Saturday, February 29, 1992 7:05:00 PM
  20.  
  21.  
  22. CFLAGS = -d MPW
  23.  
  24. LFLAGS = -m
  25.  
  26.  
  27. .o ─ .c unzip.h unzip.make
  28.         C {CFLAGS} -o {Default}.o {Default}.c
  29.  
  30. .o ─ .asm
  31.         as -o {Default}.o {Default}.asm
  32.  
  33. OBJECTS = ╢
  34.         unzip.o ╢
  35.         extract.o ╢
  36.         file_io.o ╢
  37.         macfile.o ╢
  38.         macstat.o ╢
  39.         mapname.o ╢
  40.         match.o ╢
  41.         misc.o ╢
  42.         unimplod.o ╢
  43.         unreduce.o ╢
  44.         unshrink.o
  45.  
  46. unzip ─ {OBJECTS}
  47.         ln {LFLAGS} -o unzip {OBJECTS} -lm -lmpw -lc
  48.